home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / os2tg_10.zip / TELEGARD.DOC < prev   
Text File  |  1996-06-03  |  4KB  |  119 lines

  1. ╓──╥──┐ ╥──┐ ╥    ╥──┐ ╓──┐ ╓──┐ ╥──┐ ╥──┐
  2.    ║    ╟─   ║    ╟─   ║ ─┐ ╟──┤ ╟─┬┘ ║  │
  3.    ║    ╨──┘ ╨──┘ ╨──┘ ╙──┘ ╨  ┴ ╨ ┴  ╨──┘
  4.    ║
  5.    ╨
  6.           ╓─────┐ ╥──┐ ╓─╥─┐ ╥  ┬ ╥──┐
  7.           ║       ╟─     ║   ║  │ ╟──┘
  8.           ╙─────┐ ╨──┘   ╨   ╙──┘ ╨
  9.                 │
  10.           ╙─────┘
  11.                      ╓──╥──┐ ╥  ┬ ╥    ╓─╥─┐ ─╥─     ╓──┐ ╓──┐ ╥──┐ ╥──┐
  12.                      ║  ║  │ ║  │ ║      ║    ║  ─── ║  │ ║  │ ║  │ ╟─
  13.                      ║  ║  │ ╙──┘ ╨──┘   ╨   ─╨─     ╨  ┴ ╙──┘ ╨──┘ ╨──┘
  14.                      ║  ║  │
  15.                      ╨  ╨  ┴                                 by Richard Ross
  16. ──────────────────────────────────────────────────────────────────────────────
  17.  
  18.  
  19.  
  20.                                -= INTRO =-
  21.  
  22. This should be quick and simple Telegard is very easy to setup multi node. I
  23. will explain how to do this and give examples of batch files for your doors.
  24.  
  25.  
  26.  
  27.                              -= TELEGARD =-
  28.  
  29. You will first need to have a multi tasking Operating system setup I hope you
  30. picked Os/2. Then all you need to get Telegard to be multi-node is from the
  31. main WFC screen hit S for system configuration. Then B for Site information.
  32. And finally F for multi-node. Now quit out of that and from the WFS screen hit
  33. T for system manager then N for node manager. Here you will need to set the
  34. correct modem init and com port. If you are using non standard ports you need
  35. to add the address/irq of that port. You might have to any ways for some doors
  36. so set it. Now you will need to start your nodes up with this command line.
  37. Telegard -n? replace the ? with the node number you wish to start. Also
  38. remember if you are using an external msg editor or chat program you need to
  39. change these in Telegard also.
  40.  
  41.  
  42.  
  43.                                -= DOORS =-
  44.  
  45. Now for the doors. Ok first things first you will see that Telegard has
  46. changed the location of the drop files for node one it is tg\temp1 and node 2
  47. is tg\temp2 ect.. If the door you are configuring is multi node and can take
  48. command line arguments this is how your batch file might look. This would have
  49. to be changed for your paths. Also you need to check and see if the door has
  50. multi configs like lord and config those.
  51.  
  52. @ECHO OFF
  53. CD\YANKS
  54. YANKRED.EXE /F=X:\TG\TEMP%1\DOOR.SYS /N%1
  55. CD\
  56.  
  57. Ok what the %1 one is the node number that will be passed to the batch file
  58. with the MCI code ~CN. With this batch file you can keep it in a batch dir
  59. that must be in your path statement or in the doors directory.
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.                           -= DOORS CONTINUED =-
  70.                                     
  71. Next you will need to edit your menu and this is how that should look.
  72.  
  73. Menu ONLINE.MNU - Editing command #24 (of 38)
  74.  
  75. 1. Long       (B)Yanks & Rednecks
  76. 2. Short      (B)Yanks & Rednecks
  77. 3. Keys       B
  78. 4. Command    DG - Shell w/ DOOR.SYS (GAP)
  79. 5. Options    "Y:\YANKS\YANK.BAT ~CN"
  80. 6. Access     "s25"
  81. 7. Display    Visible Always
  82.  
  83. Edit menu (?=help) : 
  84.  
  85.  
  86. This is how your menu should look the only difference should be the ~CN some
  87. doors might want more then that like the com port and baud. You can add those
  88. with the needed MCI codes. And %2 %3 ect.. in the batch files. With some doors
  89. you might need to get a little more involved like this. 
  90.  
  91. @ECHO OFF
  92. IF %1 == 1 GOTO NODE1
  93. IF %1 == 2 GOTO NODE2
  94.  
  95. :NODE1
  96. USURPER.EXE /M1 /N1 /PC:\TG\TEMP1 /X1 /B38440
  97. GOTO END
  98.  
  99. :NODE2
  100. USURPER.EXE /M1 /N1 /PC:\TG\TEMP1 /X /B38400
  101. GOTO END
  102.  
  103. :END
  104. CD\
  105.  
  106.  
  107. This is my usurper batch file for multi node use you might have to use this
  108. for some doors. For doors like BRE that are not multi node will need to copy
  109. the drop file to that Doors directory.
  110.  
  111.  
  112.  
  113.                          -= ABOUT THE AUTHOR =-
  114.  
  115. Read the setup.doc at the bottom if you have any questions please feel free to
  116. send me netmail.
  117.  
  118.  
  119.